
/* Featured episode cards */
.featured-episodes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.episode-card {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.episode-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.episode-overlay {
  position: absolute;
  top: -14px;
  left: -9px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 10px;
}
.episode-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
}
.episode-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.episode-links li {
  margin: 5px 0;
}
.episode-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.episode-links a:hover {
  color: #fff;
}
.episode-card:hover .episode-cover {
  filter: blur(5px) brightness(0.7);
}
.episode-card:hover .episode-overlay {
  opacity: 1;
}

.card-link {
  display: inline-block;  /* o block, según tu layout */
  text-decoration: none;  /* quita subrayado */
  color: inherit;         /* mantiene colores de texto */
}
.gran-titulo{
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  background:rgba(255, 255, 255, 0.009);
  -webkit-backdrop-filter: blur(4px) brightness(0.8);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 0.3px solid rgba(255, 255, 255, 0.171);
  max-width: 230px; /* ajustable */
  border-radius: 5px;
  backdrop-filter: blur(5px) brightness(0.7);
  color:#ffffff
}

/* Shine effect: moving highlight */
.gran-titulo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.200) 40% 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 5s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}